home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 8 / Revista CD Expert nº 08 CD1.iso / Utilitarios / Programacao / Pacific C for DOS / EXAMPLES / HELLO.C < prev    next >
C/C++ Source or Header  |  1995-03-08  |  104b  |  9 lines

  1. #include    <stdio.h>
  2.  
  3. /* Infamous "hello world" program */
  4.  
  5. main()
  6. {
  7.     printf("Hello, world\n");
  8. }
  9.